<!-- Begin
function setfocus(formNum, elementNum) 		
{
		//----------------------------------------------------------------------------
		//  Function that sets focus on the first field on the form
		//--------------------------------------------------------------------------
		if (document.forms.length > 0){		   
			document.forms[formNum].elements[elementNum].focus()					
		}
}
//  End -->
